Welcome![Sign In][Sign Up]
Location:
Search - windows CE a

Search list

[Other resourceWindows CE下的串口通讯类

Description: 串行通讯是目前计算机、通信和控制领域最基本的通信方式。在CSDN的“嵌入式开发/WINCE”社区中,经常有人提问该到哪找串口通讯类,其实这个问题我自己也问过。:)而一般的回答是给你提供一个Pocket PC 2002的SDK例子程序。但到底SDK的程序和MFC的结构有很大的不同,对于想用MFC编写通信程序的人来说也不是很便利。 另一方面,由于Windows CE是一个基于Unicode的操作系统,并且Windows CE不支持Windows下常用的串行通信重叠I/O方式(OVERLAPPED),因此编写Windows CE下的串口通讯类有一些与桌面Windows不同的地方。 以下是我从SDK程序改写而来的MFC类,希望能和致力于WINCE开发的朋友多多交流,由于本人才疏学浅,程序中有许多不完善的地方,请大家指正。我的程序是基于“主动发送请求,被动接收响应”的假设,因此我只设置了一个接收数据的线程。-serial communication is the computer, communications and control areas the most basic means of communication. Bringing in the "Embedded Development / pulled" communities, it was often the question where to find serial communications, in fact, the question I have asked. :) And the general answer is to provide you with a Pocket PC 2002 SDK examples procedures. But in the end SDK MFC procedures and the structure are quite different, MFC prepared to use communication program who is not very convenient. The other hand, is a Windows CE-based Unicode operating system, Windows CE and Windows do not support common serial communication overlapping I / O modes (OVERLAPPED), prepared under the Windows CE serial communications with some Windows desktop different places. Following is the proce
Platform: | Size: 5655 | Author: wzg | Hits:

[Other resourceWindows CE 应用程序实例

Description: Windows CE 是微软公司开发的一种嵌入式操作系统。它是一种模块化的、实时的、有强大通信能力的、抢先式、多任务的嵌入式操作系统。-Windows CE is Microsoft's embedded operating system. It is a modular, real-time, a powerful communications capabilities, preemptive multitasking embedded operating system.
Platform: | Size: 2609441 | Author: 杨爽 | Hits:

[Embeded-SCM Developupload

Description: CEComm: Windows CE 4.0下的串口调试程序 串口精灵源代码 TTY:Windows 下的类似超级终端的原代码. TAPICase: Windows 下用TAPI拨号的例子 image: Windows 下一个数字图象处理的综合实例-CEComm: Windows CE 4.0 serial under the debugger source code wizard serial TTY: Windows under similar HyperTerminal the original code. TAPICase: Windows Dial-up using TAPI example image: Windows under a comprehensive digital image processing examples
Platform: | Size: 4303872 | Author: 孙立 | Hits:

[Windows MobileCCeShadeButtonST

Description: WinCE下的一个图形按钮例子-a button example with picture in windows CE
Platform: | Size: 70656 | Author: 张王李 | Hits:

[Windows CEWINCE设备驱动程序开发指南

Description: 介绍了为基于Windows CE的设备开发设备驱动程序的过程,解释了如何创建简单和流接口驱动程序,以及如何实现通用串行总线(USB)和网络驱动程序接口规范(NDIS)驱动程序-introduced for Windows CE-based devices device driver process, and explained how to create a simple interface and flow-driven procedures, and how to achieve universal serial bus (USB) and Network Driver Interface Specification (NDIS) driver
Platform: | Size: 4352000 | Author: akay | Hits:

[Windows CEWinCE通信指南之配套光盘

Description: WINDOWS CE 通信指南(附光盘) 本书配套光盘内容包括:本书的英文版电子书;SDK for Windows CE,Handheld PC Professional Edition 3.0;范例源代码;送“Internet互联网即时通”多媒体学习软件。 本书是Microsoft Windows CE开发人员指南系列丛书之一。Microsoft Windows CE是公司为系统资源有限的设备开发的一种小型操作系统。因为Windows CE具有模块化的设计特征,所以能够适用于多种设备,包括从手提PC(H/PC)到嵌入式系统。全书共分十章:Windows CE通信概述,串行通信,电话API,远程访问服务,Windows插口,Windows连网,Internet连接,安全支持提供者接口密码技术和无线服务。 本书是为Windows CE开发人员编写的,是Windows CE应用程序开发人员必备的手册,同时也可作为广大科技人员,大专院校相关专业师生自学的参考书。 本书配套光盘内容包括:本书的英文版电子书;SDK for Windows CE,Handheld PC Professional Edition 3.0;范例源代码;送“Internet互联网即时通”多媒体学习软件。-WINDOWS CE Communication Guide (CD-ROM) discs supporting the book include : the English version of the book, e-books; SDK for Windows CE, Handheld PC Professional Edition 3.0; Examples of source code; Send "Internet Internet instant messaging" multimedia learning software. The book is a Microsoft Windows CE Developer's Guide Series one. Microsoft Windows CE for the system is the limited resources of equipment developed by a small operating system. Because Windows CE has a modular design features, can be applied to multiple devices, including mobile PC (H/PC) to the embedded system. The book is divided into 10 chapters : Overview of Windows CE communications, serial communications, telephone API, remote access services, Windows sockets, Windows networking, Internet connectiv
Platform: | Size: 390144 | Author: alen | Hits:

[Othercespy

Description: A Windows CE API Inecptor Tools
Platform: | Size: 80896 | Author: 张强 | Hits:

[DocumentsCPU 测速(MHz)和高精度延时(微秒级)

Description: 一.高精度延时, 是 CPU 测速的基础 Windows 内部有一个精度非常高的定时器, 精度在微秒级, 但不同的系统这个定时器的频率不同, 这个频率与硬件和操作系统都可能有关。 利用 API 函数 QueryPerformanceFrequency 可以得到这个定时器的频率。 利用 API 函数 QueryPerformanceCounter 可以得到定时器的当前值。 根据要延时的时间和定时器的频率, 可以算出要延时的时间定时器经过的周期数。 在循环里用 QueryPerformanceCounter 不停的读出定时器值, 一直到经过了指定周期数再结束循环, 就达到了高精度延时的目的。 高精度延时的程序, 参数: 微秒 二.测速程序 利用 rdtsc 汇编指令可以得到 CPU 内部定时器的值, 每经过一个 CPU 周期, 这个定时器就加一。 如果在一段时间内数得 CPU 的周期数, CPU工作频率 = 周期数 / 时间 为了不让其他进程和线程打扰, 必需要设置最高的优先级 以下函数设置当前进程和线程到最高的优先级。 SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS) SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL) CPU 测速程序的源代码, 这个程序通过 CPU 在 1/16 秒的时间内经过的周期数计算出工作频率, 单位 MHz: -one. High-precision delay, the CPU speed is the basis of Windows within a very high accuracy of the timer, the microsecond precision, but in the system timer different frequencies, the frequency and hardware and the operating system are likely. Using API function can be QueryPerformanceFrequency the timing The frequency. Use QueryPerformanceCounter API function can be the current timer value. According to the delay time and the frequency of the timer, you could calculate the time to delay timer after a few cycles. The circle with QueryPerformanceCounter repeatedly read out the timer value, until after a specified number of cycles end the cycle again, it reached a high precision delay purposes. High-precision delay the procedure parameters : 2 microsecond. Gun utilize RDTSC instruction can
Platform: | Size: 1024 | Author: 马俊 | Hits:

[Windows CEWindows CE 应用程序实例

Description: Windows CE 是微软公司开发的一种嵌入式操作系统。它是一种模块化的、实时的、有强大通信能力的、抢先式、多任务的嵌入式操作系统。-Windows CE is Microsoft's embedded operating system. It is a modular, real-time, a powerful communications capabilities, preemptive multitasking embedded operating system.
Platform: | Size: 2609152 | Author: 杨爽 | Hits:

[Windows CEWindowsCE_Design

Description: 这是一本《Windows CE程序设计》的随书光盘的源代码。-This is a "Windows CE programming" CD with the book's source code.
Platform: | Size: 1209344 | Author: 余士威 | Hits:

[Windows CEWindoswsCEcodeexample1

Description: Microsoft Windows CE 程序设计实例(源码1)-Microsoft Windows CE program design (a source)
Platform: | Size: 1005568 | Author: wonf | Hits:

[Com Portwindowsceserial

Description: 通过创建串口类实现了windows ce下的串口通信-through the creation of a category of achievement under the windows ce Serial Communication
Platform: | Size: 45056 | Author: 姚传群 | Hits:

[Windows CEcezip

Description: 众所周知,最近几年来,基于WINCE平台的各种设备是越来越多,这得益于微软对WINDOWS CE操作系统的大力推广,当然这和WINDOWS CE系统的优越性是分不开的。但运行这个系统的设备往往没有像PC机那样有海量的存储介质,因此磁盘空间对于这些设备是非常宝贵的,往往是能节约1K是1K,所以如果能对这些设备上的文件进行压缩存储或对大文件进行分割存储,就能使用户在有限的空间中存储更多的数据,这将会对用户有莫大的帮助。也正是由于以上这些原因,我们才萌发了开发能有这样功能的软件的想法。-known, in recent years, based on the platform pulled the equipment is more and more thanks to Microsoft Windows CE operating system for the promotion efforts, of course, Windows CE system and the advantages are inseparable. But the system running the equipment is often not as PC as a mass storage media, therefore disk space for the equipment is very valuable, and often can save 1K is 1K, Therefore, if these devices can be right on the document compression or storage of large files for storage division, it will enable users in a limited space, storing more data, the user will be of great help. It is due to these reasons, we can develop the germination of this functional software ideas.
Platform: | Size: 136192 | Author: 刘钦 | Hits:

[Windows MobileIrComm

Description: windows mobile下运用红外线端口进行聊天的小程序。windows ce programme书中给的代码是用在PPC2002上的,本人移植到了smartphone2003上了。-windows to use mobile infrared port for a small chat procedures. Windows ce book to the program code is used in the PPC2002. I transplanted to a smartphone2003 ones.
Platform: | Size: 139264 | Author: jungho_lee | Hits:

[VC/MFCwindows-device-driver-progran

Description: 中文名为:windows设备驱动程序技术内幕 详细介绍了设备驱动的原理和实现方法,并列举了大量的实例方便大家学习-Chinese called : windows device driver technology insider detailed description of the device-driven principles and methods He cited a number of examples to facilitate learning
Platform: | Size: 8123392 | Author: 小强 | Hits:

[Driver DevelopMicrosoft+Windows+CE+Device+Driver+Kit

Description: 比较详细地描述了如何在windowsCE下开发设备驱动程序。-A more detailed description of how to develop windowsCE device drivers.
Platform: | Size: 4352000 | Author: zongmj | Hits:

[Windows CEWindows+CE+API

Description: WinCE API ,基于c 语言。这是比较详细的wince api。-WinCE API, based on the c language. This is a more detailed wince api.
Platform: | Size: 1199104 | Author: 吴宪 | Hits:

[Windows CEwinceapi

Description: Windows CE API 手册 v2.0-Windows CE API Manual v2.0
Platform: | Size: 1199104 | Author: 王长春 | Hits:

[Windows CEWindows-CE-Tools

Description: wince tool教程,对初学者是个不错的学习资料-wince tool tutorial for beginners is a good learning materials
Platform: | Size: 7961600 | Author: pp | Hits:

[Othera

Description: windows ce IP获取 c++,主要是ppc手机中的IP地址和主机名的获取-windows ce IP access c++, mainly ppc phone IP address and host name of the access
Platform: | Size: 7260160 | Author: 蔡超 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 26 »

CodeBus www.codebus.net